home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Burning & Media / GB-PVR 1.2.13 / GBPVR10213.msi / Cabs.w1.cab / index.aspx.cs620 < prev    next >
Text File  |  2007-01-07  |  1KB  |  45 lines

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11.  
  12. namespace gbweb
  13. {
  14.     /// <summary>
  15.     /// Summary description for index.
  16.     /// </summary>
  17.     public partial class index : System.Web.UI.Page
  18.     {
  19.         protected void Page_Load(object sender, System.EventArgs e)
  20.         {
  21.             Session["GuideStartTime"] = null;
  22.             Response.Redirect("Manage.aspx");
  23.         }
  24.  
  25.         #region Web Form Designer generated code
  26.         override protected void OnInit(EventArgs e)
  27.         {
  28.             //
  29.             // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  30.             //
  31.             InitializeComponent();
  32.             base.OnInit(e);
  33.         }
  34.         
  35.         /// <summary>
  36.         /// Required method for Designer support - do not modify
  37.         /// the contents of this method with the code editor.
  38.         /// </summary>
  39.         private void InitializeComponent()
  40.         {    
  41.         }
  42.         #endregion
  43.     }
  44. }
  45.